home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / sys / amiga / cf / plConfig.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-23  |  2.0 KB  |  72 lines

  1. /* -*-C-*-
  2. /* $Id: plConfig.h,v 1.2 1994/08/23 16:38:04 mjl Exp $
  3.  * $Log: plConfig.h,v $
  4.  * Revision 1.2  1994/08/23  16:38:04  mjl
  5.  * New config files for PLplot Amiga build.
  6.  *
  7.  * Revision 1.4  1994/07/28  07:40:47  mjl
  8.  * Added define for caddr_t to prevent future problems with broken X11R4
  9.  * headers and _POSIX_SOURCE.  Not defined if sys/types.h goes ahead
  10.  * and typedef's it anyway, when it's not supposed to.
  11.  *
  12.  * Revision 1.3  1994/07/25  05:56:30  mjl
  13.  * Added check for unistd.h.
  14.  *
  15.  * Revision 1.2  1994/07/23  04:41:08  mjl
  16.  * I'm going to try defining _POSIX_SOURCE here now.
  17.  *
  18.  * Revision 1.1  1994/07/19  22:26:57  mjl
  19.  * Header file for holding miscellaneous config info, including install
  20.  * directories, system dependencies, etc.  Included by plplotP.h.
  21. */
  22.  
  23. /*
  24.     plConfig.h.in
  25.  
  26.     Maurice LeBrun
  27.     IFS, University of Texas at Austin
  28.     18-Jul-1994
  29.  
  30.     Contains macro definitions that determine miscellaneous PLplot library
  31.     configuration defaults, such as macros for bin, font, lib, and tcl
  32.     install directories, and various system dependencies.  On a Unix
  33.     system, typically the configure script builds plConfig.h from
  34.     plConfig.h.in.  Elsewhere, it's best to hand-configure a plConfig.h
  35.     file and keep it with the system-specific files.
  36. */
  37.  
  38. #ifndef __PLCONFIG_H__
  39. #define __PLCONFIG_H__
  40.  
  41. /* Define if on a POSIX.1 compliant system.  */
  42. #undef _POSIX_SOURCE
  43.  
  44. /* Define HAVE_UNISTD_H if unistd.h is available. */
  45. #undef HAVE_UNISTD_H
  46.  
  47. /* Define if you have vfork.h.  */
  48. #undef HAVE_VFORK_H
  49.  
  50. /* Define to `int' if <sys/types.h> doesn't define.  */
  51. #undef pid_t
  52.  
  53. /* Define to `char *' if <sys/types.h> doesn't define.  */
  54. #undef caddr_t
  55.  
  56. /* Define as the return type of signal handlers (int or void).  */
  57. #undef RETSIGTYPE
  58.  
  59. /* Define if you have the ANSI C header files.  */
  60. #undef STDC_HEADERS
  61.  
  62. /* Define vfork as fork if vfork does not work.  */
  63. #undef vfork
  64.  
  65. /* Install directories. */
  66.  
  67. #undef LIB_DIR
  68. #undef BIN_DIR
  69. #undef TCL_DIR
  70.  
  71. #endif    /* __PLCONFIG_H__ */
  72.